:root {
    --primary-color: #0a84cb;
}

body {
    font-family: "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
    background-color: #FFFFFF;
    font-size: 14px;
    color: #333333;
}

a {
    color: #333333;
}

a, a:hover, a:visited {
    text-decoration: none
}

a:hover {
    color: #0a84cb;
}

a:visited {
    /*color: inherit;*/
}

.container {
    width: 1440px;
    overflow: hidden;
    margin: 0 auto;
}

.flex {
    flex-direction: row;
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.flex-1 {
    flex: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mt-1 {
    margin-top: 5px
}

.mt-2 {
    margin-top: 8px
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/*=============*/
.header-top {
    height: 42px;
    line-height: 42px;
    background-color: #f5f5f5;
    color: #666666;
    font-size: 13px;
}

header {
    padding: 18px 0;
}

header .logo {
    font-size: 24px;
    color: #0a84cb;
}

header .logo img {
    margin-right: 5px;
    max-width: 200px;
}

header .logo a {
    color: #0a84cb;
}

nav {
    height: 36px;
    line-height: 36px;
}

nav a {
    text-align: center;
    width: 100px;
    margin-left: 10px;
}

nav a:hover, nav a.active {
    background-color: #0a84cb;
    color: #ffffff;
}

footer {
    padding: 40px 0 0;
    background-color: #313030;
    color: #ffffff;
    font-size: 13px;
}

footer a {
    color: #c7c5c5;
}

footer a:hover {
    color: #ffffff;
}

footer dl {
    width: 180px;
    padding-right: 10px;
}

footer dl dt {
    font-size: 15px;
    margin-bottom: 20px
}

footer dl dd {
    margin-left: 0;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}


footer .qrcode {
    /*border-left: 1px solid #424242;*/
    margin-left: 45px;
    margin-top: 36px;
    width: 120px;
}

footer .copyright {
    margin-top: 40px;
    color: #c7c5c5;
    background-color: #131313;
    padding: 5px 0
}

footer .contact {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 30px;
}

footer .contact img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

footer .ftel {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 30px;
    margin-top: 10px;
}

.links {
    padding: 25px 0;
    background-color: #f5f5f5;
    color: #666666;
}

.links a {
    color: #666666;
    margin-right: 5px;
}


/*首页*/
.swiper {
    width: 100%;
    height: 760px;
}

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
}

.title {
    padding: 55px 0 45px;
    margin: 0 auto;
    text-align: center;
}

.title .name {
    font-size: 32px;
    font-weight: bold;
    color: #0a84cb;
}

.title .en {
    font-size: 18px;
    color: #777777;
    margin-top: 5px;
}

.service {
    margin-top: 50px;
}

.service a {
    width: 270px;
    margin-right: 40px;
    margin-bottom: 32px;
    color: #555555;
    font-size: 13px;
    overflow: hidden;
    line-height: 20px;
}

.service a img {
    width: 270px;
    height: 170px;
    transition: 0.5s;
}

.service a:hover img {
    transform: scale(1.1);
}

.service a:nth-child(4n) {
    margin-right: 0;
}

.service a .name {
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.products .link {
    margin-right: 15px;
}

.products .link a {
    padding: 12px 15px;
}

.products .link a:hover, .products .link a.active {
    background-color: #005cc5;
    color: #ffffff;
}

.product {
    margin: 0 0 40px;
}

.product a {
    margin-right: 24px;
    margin-bottom: 24px;
    font-size: 15px;
    overflow: hidden;
    line-height: 20px;
    border: 1px solid #e7e7e7;
    padding: 10px;
    padding-bottom: 0;
}

.product a:hover {
    border: 1px solid var(--primary-color);
}

.product a .img {
    width: 320px;
    height: 288px;
    overflow: hidden;
}

.product a img {
    width: 320px;
    /*height: 288px;*/
    transition: all 0.5s linear;
}

.product a:nth-child(4n) {
    margin-right: 0;
}

.product a .name {
    white-space: nowrap;
    padding: 15px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.product a:hover img {
    transform: scale(1.1);
}

a:hover .name {
    color: #0a84cb;
}

.ads {
    height: 360px;
}

/*.ads .ad {*/
/*    font-size: 40px;*/
/*    font-weight: bold;*/
/*    width: 266px;*/
/*    height: 158px;*/
/*    border: 1px solid #033e98;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin-top: 70px;*/
/*}*/

/*.ads .ad span {*/
/*    font-weight: normal;*/
/*    font-size: 18px;*/
/*    color: #9bc0f8;*/
/*    margin-top: 10px;*/
/*}*/

.solution {
}

.solution a {
    width: 450px;
    margin-right: 45px;
    margin-bottom: 40px;
    background-color: #f4f4f4;
}

.solution a:nth-child(3n) {
    margin-right: 0;
}

.solution a .img {
    overflow: hidden;
    width: 100%;
    height: 285px;
}

.solution a img {
    width: 100%;
    height: 285px;
    transition: 0.5s;
}

.solution a .name {
    font-size: 16px;
    padding: 25px 10px;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.solution a:hover img {
    transform: scale(1.1);
}


.new {
}

.new a {
    width: 370px;
    height: 360px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
    padding: 15px;
    box-sizing: border-box;
}

.new a .name {
    font-size: 20px;
    margin-top: 15px;
}

.new a .desc {
    margin: 28px auto;
    font-size: 15px;
    color: #777777;
    line-height: 30px;
    height: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new a .time {
    color: var(--primary-color);
    font-size: 20px;
    margin: 10px 0;
}

.new a .more {
    color: var(--primary-color);
    display: inline-block;
    margin-top: 30px;
    text-align: center;
    padding: 10px 0;
    width: 108px;
    border: 1px solid var(--primary-color);
}

.new a .more:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.new .news-bg {
    background-repeat: no-repeat;
    background-size: cover;
    width: 232px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new .news-bg a {
    width: auto;
    height: auto;
    background-color: transparent;
    display: flex;
    margin-right: 0;
    padding: 15px;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    flex-direction: column;
    align-items: center;
}

.new .news-bg a img {
    margin-bottom: 10px;
    width: 63px;
    height: 63px;
}

.new .news-bg a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.news .link a {
    padding: 0 15px;
}

.news .line-news {
    border-bottom: 1px solid #e7e7e7;
    line-height: 50px;
    margin: 0;
    overflow: hidden;
}

.news .line-news .ntitle {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 480px;
}

.about {
    background-color: #f5f5f5;
    margin: 30px auto 0;
    height: 640px;
}

.about .about-img {
    width: 50%;
}

.about .content {
    width: 50%;

}

.about .content .mabout {
    width: 720px;
    padding-left: 40px;
    color: #555555;
    font-size: 15px;
    line-height: 26px;
    box-sizing: border-box;
}

.about .name {
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    margin-top: 35px;
    font-weight: bold;
}

.about .line {
    background-color: var(--primary-color);
    height: 3px;
    width: 100px;
    margin-top: 15px;
}

.about .content a {
    color: var(--primary-color);
    display: inline-block;
    margin-top: 40px;
    padding: 8px 40px;
    border: 1px solid var(--primary-color);
}

.about .content a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.case {
    margin: 0 auto 50px;
    padding-left: 30px;
}

.case .swiper-button-next, .case .swiper-button-prev {
    color: #ffffff !important;

    width: 40px;
    height: 60px;
    background-color: #d3d3d3;
}

.case .swiper-button-next::after, .case .swiper-button-prev::after {
    font-size: 24px;
}

.case-list .case-con a {
    width: 280px;
    margin-right: 23px;
    margin-bottom: 15px;
}

.case-list .case-con a:nth-child(4n) {
    margin-right: 0;
}

.case-list .case-con a .img {
    width: 280px;
    height: 230px;
    overflow: hidden;
}

.case-list .case-con .name {
    line-height: 30px;
    text-align: center;
}

.case-list .case-con a img {
    max-width: 280px;
    max-height: 230px;
    transition: all 0.5s linear;
}

.case-list .case-con a:hover img {
    transform: scale(1.08);
}


.detail {
    padding-right: 15px;
}

.detail .atitle {
    padding: 20px 0 0;
    font-size: 22px;
}

.partner {
    margin: 30px auto 20px;
}

.partner img {
    width: 162px;
    height: 76px;
    margin-right: 6px;
    margin-bottom: 10px;
}

.partner img:nth-child(7n) {
    margin-right: 0;
}

.tbanner {
    height: 370px;
    width: 100%;

}

.tbanner .cat-name {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
}

.main {
    padding: 30px 0;
}

.side {
    width: 250px;
    flex-shrink: 0;
    margin-right: 30px;
}

.side .box {
    border: 1px solid #0a84cb;
    margin-bottom: 30px;
}

.side .box .name {
    background-color: #0a84cb;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    padding: 10px 0;
}

.side .box .list {
    color: #666666;
    padding: 20px 15px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
}

.side .box .list a {
    display: inline-block;
    background-color: #e7e7e7;
    padding: 15px;
    width: 190px;
    margin: 5px auto;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    color: #333333;
}

.side .box .list a .cname {
    width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.side .box .list a:hover, .side .box .list a.active {
    color: #ffffff;
    background-color: #0a84cb;
}

.side .box .list p {
    margin-bottom: 5px;
}

.article {
    width: 920px;
}

.article .title {
    line-height: 40px;
    height: 40px;
}

.article .title .name {
    font-size: 18px;
}

.breadcrumb-c {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-c .cate-name {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--primary-color);
    padding: 5px 0 2px 0;
}

.breadcrumb-c .cate-name span {
    font-size: 14px;
    font-weight: normal;
    color: #888888;
    margin-top: 5px;
}

.breadcrumb {
    font-size: 13px;
    color: #666666
}

.breadcrumb a {
    color: #666666
}

.breadcrumb a:hover {
    color: #0a84cb
}

.acon {
    line-height: 30px;
}


.page {
    width: 90%;
    clear: both;
    margin: 0 auto;
}

.pagination {
    width: 100%;
    line-height: 2rem;
    text-align: center;
    border-top: none;
    margin: 10px 0 10px 10px;
}

.pagination li {
    display: inline-block
}

.pagination a {
    padding: 6px 10px !important;
    color: #666 !important;
    margin: 0 6px;
    border: 1px solid #E2E2E2;
    background: #fff;
    border-radius: 3px;
}

.pagination a:hover {
    background: #E2E2E2;
    color: #555;
    border-radius: 3px
}

.pagination span {
    padding: 6px 10px;
    color: #666;
    margin: 0 6px;
    border: 1px solid #E2E2E2;
    background: #E2E2E2;
    color: #555;
    border-radius: 3px
}

.pagination font {
    color: #000
}

.pagination .active span {
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.acon .product a {
    width: 282px;
    height: 282px;
    margin-right: 36px;
    margin-bottom: 32px;
    color: #555555;
    font-size: 13px;
    overflow: hidden;
    line-height: 20px;
}

.acon .product a:nth-child(3n) {
    margin-right: 0;
}

.acon .atitle {
    padding: 30px 0;
    font-size: 22px;
}

.border-top {
    border-top: 1px solid #e7e7e7;
}

.pt-2 {
    padding-top: 15px;
}

.acon .solution a {
    width: 100%;
    margin-bottom: 40px;
}

.acon .solution a .desc {
    margin: 0 auto;
}


.acon .case a {
    width: 282px;
    height: 282px;
    margin-right: 36px;
    margin-bottom: 0px;
    color: #555555;
    font-size: 13px;
    overflow: hidden;
    line-height: 20px;
}

.acon .case a .img {
    border: none
}

.acon .news {
    margin-top: 10px
}

.acon .news a {
    margin-bottom: 0
}

.acon .news a .border {
    padding: 15px 0;
    border-bottom: 1px solid #e7e7e7;
    width: 100%;
}

.news-con .atitle {
    padding: 20px 0 0;
}

.border-bottom {
    border-bottom: 1px solid #e7e7e7;
}

.detail .attr {
    padding-bottom: 10px;
    color: #999999;
}

.detail .content {
    color: #666666;
    line-height: 28px;
    padding-bottom: 20px;
}

.detail .content p{
    padding-top: 0;
    margin-top: 0;
}
.feedback {

}

.feedback .input {
    display: flex;
    margin-bottom: 20px;
}

.feedback .input .label {
    width: 136px;
    text-align: right;
}

.feedback .input .label span {
    color: red;
}

.feedback .input input, .feedback .input textarea {
    border: 1px solid #e7e7e7;
    width: 310px;
}

.feedback .input textarea {
    width: 600px;
}

.feedback .btn {
    background-color: #0a84cb;
    color: #ffffff;
    width: 80px;
    height: 30px;
    outline: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

.feedback button {
    background-color: #dcdcdc !important;
    color: #333333 !important;
    margin-left: 50px;
}

.feedback .btns {
    margin-left: 136px;
}

.toTop {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 10px;
    bottom: 20px;
    border-radius: 50%;
    z-index: 99;
    background-color: #ffffff;
    cursor: pointer;
}

.toTop img {
    max-width: 90%;
}


.side {
    width: 225px;
    flex-shrink: 0;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side a {
    display: inline-block;
    padding: 18px 0;
    width: 225px;
    margin-bottom: 10px;
    text-align: center;
    background-color: #f2f2f2;
}


.side a:hover, .side a.active {
    color: #ffffff;
    background-color: var(--primary-color);
}


.zizhi-list {
    margin: 0 auto 30px;
}

.zizhi a {
    width: 204px;
    height: 288px;
    margin-right: 24px;
    margin-bottom: 32px;
    overflow: hidden;
}

.zizhi a img {
    width: 204px;
    height: 288px;
    transition: all 0.5s linear;
}

.zizhi .item:nth-child(5n) {
    margin-right: 0;
}

.zizhi a:hover img {
    transform: scale(1.05);
}

.product-list .product a {
    width: 275px;
    margin-right: 0px;
    margin-bottom: 32px;
    border: 1px solid transparent;
    text-align: center;
}

.product-list .product a:nth-child(4n) {
    margin-right: 0;
}


.product-list .product a .img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
}

.product-list .product a:hover {
    border: 1px solid var(--primary-color);
}

.product-list .product a img {
    max-width: 260px;
    /*max-height: 260px;*/
}


.prenext {
    line-height: 30px;
    color: #666666;
}

.prenext a {
    color: #666666;
}

.news-list {
    padding-right: 15px;
}

.news-list .lists a {
    border-bottom: 1px solid #e7e7e7;
    padding: 15px 0 15px 5px;
    color: #666666;
    overflow: hidden;
}

.news-list .lists a .name {
    max-width: 800px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-list .lists a .time {
    flex-shrink: 0;
    color: #999999;
}